home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / AncestorListener.java < prev    next >
Text File  |  1998-06-30  |  2KB  |  68 lines

  1. /*
  2.  * @(#)AncestorListener.java    1.4 97/08/26
  3.  *
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  *
  19.  */
  20. package com.sun.java.swing.event;
  21.  
  22. import java.awt.event.*;
  23. import java.awt.*;
  24. import java.util.*;
  25.  
  26. import com.sun.java.swing.*;
  27.  
  28. /**
  29.  * AncestorListener
  30.  *
  31.  * Interface to support notification when changes occur to a JComponent or one
  32.  * of its ancestors.  These include movement and when the component becomes
  33.  * visible or invisible, either by the setVisible() method or by being added
  34.  * or removed from the component hierarchy.
  35.  *
  36.  * @version 1.4 08/26/97
  37.  * @author Dave Moore
  38.  */
  39. public interface AncestorListener extends EventListener {
  40.     /**
  41.      * Called when the source or one of its ancestors is made visible
  42.      * either by setVisible(true) being called or by its being
  43.      * added to the component hierarchy.  The method is only called
  44.      * if the source has actually become visible.  For this to be true
  45.      * all its parents must be visible and it must be in a hierarchy
  46.      * rooted at a Window
  47.      */
  48.     public void ancestorAdded(AncestorEvent event);
  49.  
  50.     /**
  51.      * Called when the source or one of its ancestors is made invisible
  52.      * either by setVisible(false) being called or by its being
  53.      * remove from the component hierarchy.  The method is only called
  54.      * if the source has actually become invisible.  For this to be true
  55.      * at least one of its parents must by invisible or it is not in
  56.      * a hierarchy rooted at a Window
  57.      */
  58.     public void ancestorRemoved(AncestorEvent event);
  59.  
  60.     /**
  61.      * Called when either the source or one of its ancestors is moved.
  62.      */
  63.     public void ancestorMoved(AncestorEvent event);
  64.  
  65. }
  66.  
  67.  
  68.